home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DLLSKEL.PAK / INIT.C < prev    next >
C/C++ Source or Header  |  1997-05-06  |  5KB  |  123 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   init.c
  9. //
  10. //  PURPOSE:   Performs application and instance specific initialization.
  11. //
  12. //  FUNCTIONS:
  13. //    InitApplication() - Initializes window data and registers window.
  14. //
  15. //  COMMENTS:
  16. //
  17.  
  18. #include <windows.h>            // required for all Windows applications
  19. #include "globals.h"            // prototypes specific to this application
  20.  
  21. HINSTANCE hInst;                // current instance
  22.  
  23.  
  24. //
  25. //  FUNCTION: InitApplication(HINSTANCE, int)
  26. //
  27. //  PURPOSE: Initializes window data and registers window class.
  28. //
  29. //  PARAMETERS:
  30. //    hInstance - The handle to the instance of this application that
  31. //                is currently being executed.
  32. //    nCmdShow  - Specifies how the main window is to be displayed.
  33. //
  34. //  RETURN VALUE:
  35. //    TRUE  - Success
  36. //    FALSE - Initialization failed
  37. //
  38. //  COMMENTS:
  39. //
  40. //    This function is called at application initialization time.  It
  41. //    performs initialization tasks for the current application instance.
  42. //    Unlike Win16, in Win32, each instance of an application must register
  43. //    window classes.
  44. //
  45. //    In this function, we initialize a window class by filling out a data
  46. //    structure of type WNDCLASS and calling the Windows RegisterClass()
  47. //    function.  Then we create the main window and show it.
  48. //
  49. //
  50.  
  51. BOOL InitApplication(HINSTANCE hInstance, int nCmdShow)
  52. {
  53.     WNDCLASSEX  wc;
  54.     HWND        hwnd;           // Main window handle.
  55.     char        szAppName[9];   // The name of this application
  56.     char        szTitle[40];    // The title bar text
  57.  
  58.     // Load the application name and description strings.
  59.  
  60.     LoadString(hInstance, IDS_APPNAME, szAppName, sizeof(szAppName));
  61.     LoadString(hInstance, IDS_DESCRIPTION, szTitle, sizeof(szTitle));
  62.  
  63.     // Save the instance handle in static variable, which will be used in
  64.     // many subsequence calls from this application to Windows.
  65.  
  66.     hInst = hInstance; // Store instance handle in our global variable
  67.  
  68.     // Fill in window class structure with parameters that describe the
  69.     // main window.
  70.  
  71.     wc.cbSize        = sizeof(wc);              // Size of WNDCLASSEX
  72.     wc.style         = CS_HREDRAW | CS_VREDRAW; // Class style(s).
  73.     wc.lpfnWndProc   = (WNDPROC)WndProc;        // Window Procedure
  74.     wc.cbClsExtra    = 0;                       // No per-class extra data.
  75.     wc.cbWndExtra    = 0;                       // No per-window extra data.
  76.     wc.hInstance     = hInstance;               // Owner of this class
  77.     wc.hIcon         = LoadIcon (hInstance, szAppName); // Icon name from .RC
  78.     wc.hCursor       = LoadCursor(NULL, IDC_ARROW); // Cursor
  79.     wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); // Default color
  80.     wc.lpszMenuName  = szAppName;               // Menu name from .RC
  81.     wc.lpszClassName = szAppName;               // Name to register as
  82.     wc.hIconSm       = LoadImage (hInstance, 
  83.                                   szAppName,
  84.                                   IMAGE_ICON,
  85.                                   GetSystemMetrics(SM_CXSMICON),
  86.                                   GetSystemMetrics(SM_CYSMICON), 
  87.                                   LR_DEFAULTCOLOR);
  88.  
  89.     // Register the window class and return FALSE if unsuccesful.
  90.  
  91.     if (!RegisterClassEx(&wc))
  92.     {
  93.         // Assume we are running on Windows NT where RegisterClassEx()
  94.         // is not implement, so let's try calling RegisterClass().
  95.  
  96.         if (!RegisterClass((LPWNDCLASS)&wc.style))
  97.             return FALSE;
  98.     }
  99.  
  100.     // Create a main window for this application instance.
  101.  
  102.     hwnd = CreateWindow(szAppName,           // See RegisterClass() call
  103.                         szTitle,             // Text for window title bar
  104.                         WS_OVERLAPPEDWINDOW, // Window style
  105.                         CW_USEDEFAULT, 0,    // Use default positioning
  106.                         CW_USEDEFAULT, 0,    // Use default size
  107.                         NULL,                // Overlapped has no parent
  108.                         NULL,                // Use the window class menu
  109.                         hInstance,           // This instance owns this window
  110.                         NULL                 // Don't need data in WM_CREATE
  111.     );
  112.  
  113.     // If window could not be created, return "failure"
  114.     if (!hwnd)
  115.         return FALSE;
  116.  
  117.     // Make the window visible; update its client area; and return "success"
  118.     ShowWindow(hwnd, nCmdShow);  // Show the window
  119.     UpdateWindow(hwnd);          // Sends WM_PAINT message
  120.  
  121.     return TRUE;                 // We succeeded...
  122. }
  123.